-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.08 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.08 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
import setuptools
with open('README.md') as infile:
long_description = infile.read()
with open('VERSION') as infile:
version = infile.read().strip()
setuptools.setup(
name='votelib',
version=version,
description='Voting evaluation library for Python',
long_description=long_description,
long_description_content_type='text/markdown; charset=UTF-8',
author='Jan Šimbera',
author_email='simbera.jan@gmail.com',
python_requires='>=3.7.0',
url='https://github.com/simberaj/votelib',
packages=setuptools.find_packages(exclude=('tests', )),
install_requires=[],
extras_require={},
include_package_data=True,
license='MIT',
keywords='voting election vote electoral apportionment condorcet python',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
zip_safe=True
)