-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.48 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
from setuptools import setup, find_packages
from src.install import InstallOverride
with open('README.md', 'r') as fp:
long_description = fp.read()
with open('requirements.txt', 'r') as fp:
requires = [req.strip() for req in fp.readlines()]
setup(
name = "NJGovNews",
version = "0.0.1",
author = '@markanewman',
author_email = '[email protected]',
description = "Scrape the news feed from the New Jersey government",
long_description = long_description,
long_description_content_type = 'text/markdown',
url = "https://github.com/TextCorpusLabs/NJGovNews",
project_urls = {
'Bug Reports': 'https://github.com/TextCorpusLabs/NJGovNews/issues',
'Source': 'https://github.com/TextCorpusLabs/NJGovNews',
},
packages = find_packages(where = "src"),
package_dir = {'': 'src'},
entry_points = {
'console_scripts': [
'NJGovNews = NJGovNews.__main__:main'
],
},
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic'
],
python_requires = '>=3.10, <4',
install_requires = requires,
cmdclass = { 'install': InstallOverride }
)