forked from aceazycrdfz/pyvoting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.33 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.33 KB
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 codecs
import os
from setuptools import setup, find_packages
# these things are needed for the README.md show on pypi (if you dont need delete it)
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
# you need to change all these
VERSION = '1.0.3'
DESCRIPTION = 'simulating elections with 9 choices of voting methods, including 4 I have invented'
LONG_DESCRIPTION = 'simulating elections with 9 choices of voting methods, including 4 I have invented'
setup(
name="pyvoting",
version=VERSION,
author="Yichen Zhang",
author_email="zycrdfz@gmail.com",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=["pandas", "numpy"],
keywords=["python", "vote", "voting", "election", "approval voting",
"star voting", "ranked choice voting", "rcv", "tier list",
"tier list voting"],
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)