-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 1.25 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
from setuptools import setup, find_packages
package_name = 'pyal'
with open('README.md', 'r') as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as req:
requirements = req.read().splitlines()
setup( name = package_name
, version = '0.0.4'
, author = 'Yannick Uhlmann'
, author_email = 'augustunderground@pm.me'
, description = 'YAL Parser for Python'
, long_description = long_description
, long_description_content_type = 'text/markdown'
, url = 'https://github.com/augustunderground/pyal'
, packages = find_packages()
, classifiers = [ 'Development Status :: 2 :: Pre-Alpha'
, 'Programming Language :: Python :: 3'
, 'Operating System :: POSIX :: Linux' ]
, python_requires = '>=3.8'
, install_requires = requirements
, entry_points = { 'console_scripts': [ 'yal2yaml = yal.__main__:main' ]}
, package_data = { '': ['*.hy', '*.coco', '__pycache__/*']}
, )