-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1022 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
32
33
34
35
""" Setup script for the collect_stata package."""
from setuptools import find_packages, setup
# Package meta-data.
NAME = "collect_stata"
DESCRIPTION = "Accumulates data from stata files and writes to an open format."
URL = "https://github.com/ddionrails/collect_stata"
EMAIL = "mpahl@diw.de"
AUTHOR = "Marius Pahl"
REQUIRES_PYTHON = ">=3.8.0"
VERSION = "0.1.0"
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
]
KEYWORDS = ["stata", "dta", "tdp"]
LICENSE = "BSD 3-Clause"
setup(
name=NAME,
version=VERSION,
url=URL,
description=DESCRIPTION,
long_description=open("./README.md").read(),
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
packages=find_packages(),
install_requires=["pandas >= 0.25.0"],
entry_points={"console_scripts": ["collect_stata = collect_stata.__main__:main"]},
license=LICENSE,
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
)