-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (35 loc) · 997 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
36
37
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="reggie",
version="0.1.0",
author="VoteShield, Tyler Richards, and contributors",
author_email="[email protected]",
description="A package for reading in Voter files",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"pandas>=0.23.1",
"click>=7.1.2",
"numpy>=1.19.2",
"zipfile2>=0.0.12",
"PyYAML>=5.3.1",
"boto3>=1.15.12",
"requests>=2.20.0",
"xlrd>=1.2.0",
"bs4>=0.0.1",
"pytest>=6.0.0",
"python-slugify>=4.0.1",
"detect_delimiter>=0.1.1",
"openpyxl>=3.0.5",
"chardet>=4.0.0",
],
url="https://github.com/Voteshield/reggie",
packages=setuptools.find_packages(),
include_package_data=True,
entry_points="""
[console_scripts]
reg=reggie:convert_cli
""",
)