Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
50 lines (45 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (45 loc) · 1.59 KB
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
49
50
fromsetuptoolsimportfind_packages, setup
withopen("README.md", "r") asfh:
long_description=fh.read()
withopen("requirements.txt") asfh:
requirements=fh.read().splitlines()
install_requires= [
requirement
forrequirementinrequirements
ifnotrequirement.startswith("git+")
]
dependency_links= [
requirement
forrequirementinrequirements
ifrequirement.startswith("git+")
]
withopen("requirements-dev.txt") asfh:
dev_requirements=fh.read().splitlines()
setup(
name="questionnaire_reader",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
scripts=[],
license="AGPLv3",
description='An simple class to read our "Base Questionnaire", parse some simple values and visualize the collected data.',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TheLabbingProject/questionnaire_reader",
author="Zvi Baratz",
author_email="baratzz@pm.me",
keywords="pandas questionnaire",
python_requires=">=3.6",
install_requires=install_requires,
dependency_links=dependency_links,
extras_require={"dev": dev_requirements},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)