-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (27 loc) · 940 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
import os,sys
from setuptools import setup
_here = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = [x.strip() for x in fh.read().split('\n') if x.strip()]
setup(
name='poesy',
version='0.3.1',
description=('Poetic processing, for Python'),
long_description=long_description,
long_description_content_type="text/markdown",
author='Ryan Heuser',
author_email='[email protected]',
url='https://github.com/quadrismegistus/poesy',
license='MPL-2.0',
packages=['poesy'],
install_requires=requirements,
package_data={"poesy": ["schemes/*.txt"]},
classifiers=[
#'Development Status :: 3 - Alpha',
#'Intended Audience :: Science/Research',
#'Programming Language :: Python :: 2.7',
#'Programming Language :: Python :: 3.6'
],
)