- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
37 lines (34 loc) · 954 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (34 loc) · 954 Bytes
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
importos
fromsetuptoolsimportsetup
defread(fname):
returnopen(os.path.join(os.path.dirname(__file__), fname)).read()
exec(open('dadata/version.py').read())
setup(
name="dadata-client",
version=__version__,
author="Nikolay Fominykh",
author_email="nikolayfn@gmail.com",
description= ("DaData Python Client"),
license="MIT",
keywords="dadata api-client",
# url = "http://packages.python.org/an_example_pypi_project",
packages=[
'dadata',
'dadata.plugins'
],
install_requires=[
'requests',
# 'nosetests',
],
setup_requires=[
'pytest-runner',
],
long_description=read('README.md'),
# test_suite='pytest',
tests_require=['pytest', 'mock', 'pytest-runner', 'requests-mock' ],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)