-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (27 loc) · 965 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
from setuptools import setup, find_packages
def read_requirements():
with open('requirements.txt') as req_file:
return req_file.read().splitlines()
setup(
name="plurals",
version="0.2.29.3",
description="A package for simulated social ensembles.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="Joshua Ashkinaze",
author_email="[email protected]",
url="https://github.com/josh-ashkinaze/plurals",
packages=find_packages(),
include_package_data=True,
install_requires=read_requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
"Homepage": "https://github.com/josh-ashkinaze/plurals",
"Documentation": "https://josh-ashkinaze.github.io/plurals",
},
python_requires='>=3.6',
)