-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (38 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name='libsanctions',
version='0.1.0',
description="",
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='pep poi persons popolo database',
author='Friedrich Lindenberg',
author_email='[email protected]',
url='http://opensanctions.org',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
'unicodecsv==0.14.1',
'normality>=0.4.2',
'fingerprints>=0.4.0',
'countrynames',
'jsonschema>=2.6.0',
'sqlalchemy>=1.1.0',
'requests>=2.13',
'morphium',
'lxml',
'xlrd',
'six'
],
entry_points={},
tests_require=[]
)