-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·31 lines (27 loc) · 988 Bytes
/
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
#!/usr/bin/env python3
import setuptools
def readme():
with open('README.md') as f:
return f.read()
def read_reqs():
with open('requirements.txt') as f:
return [pkg.rstrip('\n') for pkg in f]
setuptools.setup(
name='ukpopulation',
version="1.2.2",
description='Download, cache, collate, filter, manipulate and extrapolate UK population and household estimates/projections',
long_description=readme(),
long_description_content_type="text/markdown",
url='https://github.com/nismod/ukpopulation',
author='Andrew P Smith, Tom Russell, Benjamin Wilson, Luke Archer',
packages=setuptools.find_packages(),
install_requires=read_reqs(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
test_suite='nose.collector',
tests_require=['nose']
)