-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (34 loc) · 954 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(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 = "[email protected]",
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",
],
)