-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (37 loc) · 1.12 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
from setuptools import find_packages, setup
with open('README.md') as f:
readme = f.read()
with open('LICENSE.txt') as f:
license = f.read()
setup(
name='elsim',
version='0.1.0',
description='Election simulation and analysis',
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
'Programming Language :: Python :: 3.6.2',
'License :: OSI Approved :: MIT License',
# Social choice theory
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Sociology',
'Operating System :: OS Independent',
],
python_requires='>=3.6.2', # f strings and underscore literals
keywords='elections voting social choice theory',
author_email='[email protected]',
url='https://github.com/endolith/elsim',
license=license,
packages=find_packages(exclude=('tests', 'docs', 'examples')),
install_requires=[
'numpy',
'scipy',
],
tests_require=[
'pytest',
'hypothesis',
],
extras_require={
'fast': ['numba<0.47'], # reflected set will be removed in 0.47
}
)