forked from flatironinstitute/sciware-testing-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.31 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
# load README.md contents to use as long_description
with open('README.md') as readme_file:
readme = readme_file.read()
# load requirements.txt to use as install_requires
with open('requirements.txt', 'r') as f:
requirements = [l for l in f if l.strip() and not l.startswith('#')]
setup(
name="sciware-testing-python",
author="sciware",
author_email='[email protected]',
url='https://github.com/flatironinstitute/sciware-testing-python',
description="Python Boilerplate contains all the boilerplate you need to create a Python package.",
version='0.1.0',
long_description=readme,
license="Apache Software License 2.0",
# some (optional) tags
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=requirements,
packages=find_packages()
)