This repository was archived by the owner on Jan 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.44 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name="dynata_rex",
version="1.3.1",
author="REX Maintainers",
description=("Package for building and interacting with the "
"Dynata Respondent Exchange (REX)"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dynata/rex-sdk-python",
packages=setuptools.find_packages(exclude=('tests', )),
platforms=['Any'],
install_requires=requirements,
setup_requires=['pytest-runner'],
extras_require={
# pip install -e ".[testing]"
"testing": ['pytest'],
':python_version == "3.6"': [
"typing-extensions==4.12.2",
'dataclasses==0.8'
],
':python_version == "3.7"': [
"typing-extensions==4.12.2"
]
},
tests_require=['pytest'],
keywords='respondent exchange rex smor dynata python',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)