-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (33 loc) · 1.05 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
import re
from pathlib import Path
from setuptools import setup, find_packages
from texlite._version import description, __version__
# read in description
with open(Path('docs/DESCRIPTION.md'), 'r') as f:
long_description = f.read()
# set up package details
setup(
name='texlite',
version=__version__,
author='Lucien Rae Gentil',
author_email='[email protected]',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/lucrae/texlite',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'texlite = texlite.__main__:main'
]
},
python_requires='>=3.6',
)