-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.24 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
40
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
"""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="mortality_module",
version="0.0.1",
description="Population dynamics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MRC-CSO-SPHSU/mortality_module",
author="Vladimir Khodygo",
author_email="vladimir.khodygo@glasgow.ac.uk",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.10",
],
keywords="simulation",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.10",
install_requires=["numpy", "pandas"],
extras_require={
"dev": ["check-manifest"],
"test": ["coverage"],
},
package_data={"data": ["uk_2011_census.csv", "uk_2020_mortality.csv"]},
)