-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.18 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
39
40
41
42
43
from setuptools import setup, find_packages
from sys import platform
import os
with open('requirements.txt', 'r') as req_fp:
required_packages = req_fp.readlines()
# Use README for long description
with open('README.md', 'r') as readme_fp:
long_description = readme_fp.read()
setup(
name="chronicler",
version="0.0.1",
author="Jacob Hilker",
author_email="jacob.hilker2@gmail.com",
description="Description of your project",
license="",
keywords="",
url="https://github.com/jhilker1/chronicler",
long_description=long_description,
long_description_content_type='text/markdown',
packages = find_packages(exclude=['tests', 'docs']),
extras_require={
'test': ['pytest'],
},
entry_points={
'console_scripts': [
'chronicler = chronicler:main',
],
},
install_requires=required_packages,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)