-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (50 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""cookiecutter distutils configuration."""
from setuptools import find_packages, setup
version = "dev"
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
install_requires = [
"pandas",
"anyascii",
"click==8.*",
]
setup(
name="rbstata",
version="0.1.1",
description=(
"A command-line utility that converts (or roll back) versions of Stata dta data files."
),
long_description=readme,
long_description_content_type="text/markdown",
author="Lucas Shen",
author_email="lucas@lucasshen.com",
url="https://github.com/lsys/rbStata",
packages=find_packages(),
entry_points={"console_scripts": ["rbstata = rbStata.cli:rbstata"]},
include_package_data=True,
python_requires=">=3.7",
install_requires=install_requires,
license="MIT",
zip_safe=False,
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Topic :: Software Development",
],
keywords=[
"Stata",
"Python",
"cli",
"compatibility",
"version",
],
)