-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 737 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 737 Bytes
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
from setuptools import setup
with open('requirements.txt') as fh:
requirements = fh.readlines()
setup(
name='pyoverride',
packages=['override'],
version='0.9.2',
license='MIT',
description='Python project configuration',
author='David Hyman',
author_email='david.hyman...@gmail.com',
url='https://github.com/davidhyman/override',
download_url='https://github.com/davidhyman/override/archive/0.9.tar.gz',
keywords=[
'settings',
'configuration',
'override',
],
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3',
install_requires=requirements,
tests_require=['pytest', 'coverage']
)