-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
48 lines (42 loc) · 1.11 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
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import unittest
REQUIRES = [
'bleach>=1.2.2',
'requests>=2.2.1',
'lxml>=3.2.5',
]
TESTS_REQUIRE = [
'httpretty>=0.8.8',
'pytest>=2.7.0',
'flake8>=2.4.0',
]
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name='dataverse',
version='0.1.2',
description='Python client for Dataverse version 3.X',
long_description=read("readme.md"),
author='Dataverse',
author_email='[email protected]',
url='https://github.com/rliebz/dvn-client-python',
packages=find_packages(),
package_dir={'dvn-client-python': 'dataverse'},
include_package_data=True,
install_requires=REQUIRES,
license=read("LICENSE"),
zip_safe=False,
keywords='dataverse',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
test_suite='dataverse/test',
tests_require=TESTS_REQUIRE,
cmdclass={'test': unittest}
)