-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.04 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
from setuptools import setup, find_packages
requires = []
with open('requirements.txt') as reqfile:
requires = reqfile.read().splitlines()
setup(
name='meadows',
version='0.0.6',
description='Meadows Scythe: the Meadows Export & Analysis toolkit',
url='https://github.com/meadowsresearch/scythe',
long_description='Library for meadows users to preprocess downloaded data',
long_description_content_type='text/plain',
classifiers=[
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
author='Jasper van den Bosch',
author_email='[email protected]',
keywords='',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite='tests',
)