-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (21 loc) · 772 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (21 loc) · 772 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
#!/usr/bin/env python3
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
with open("requirements.txt", "r") as f:
REQUIRED_PACKAGES = f.read().splitlines()
setup(name='daedalus',
version='0.0.2',
description='Microsimulation package for custom UK population projection',
long_description=readme(),
url='https://github.com/alan-turing-institute/daedalus',
author='Benjamin Isaac Wilson, Camila Rangel Smith, Kasra Hosseini',
author_email='crangelsmith@turing.ac.uk, khosseini@turing.ac.uk',
license='MIT',
packages=['daedalus'],
zip_safe=False,
install_requires=REQUIRED_PACKAGES,
test_suite='nose.collector',
tests_require=['nose'],
)