-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.27 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
44
45
46
47
48
49
#!/usr/bin/env python3
"""
setup.py file
"""
import os.path
import re
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
PACKAGES = find_packages(HERE)
with open(os.path.join(HERE, 'README.md')) as readme_file:
README = readme_file.read()
with open(os.path.join(HERE, 'ccsonggenerator', '__init__.py')) as init_file:
METADATA = dict(re.findall(r'__([a-z]+)__ = "([^"]+)', init_file.read()))
setup(
name="ccsonggenerator",
description=(
"A tool for auto generating unique song lyrics from a dataset of "
"traditional Irish folk music."
),
long_description=README,
version=METADATA['version'],
author="Ryan Jennings",
author_email="ryan.jennings1@ucdconnect.ie",
url="https://github.com/RyanJennings1/CC-Song-Generator",
license="FIXME",
packages=PACKAGES,
scripts=[
'bin/ccsonggenerator',
],
install_requires=[
'tensorflow==2.5.0',
'tweepy',
'pyenchant',
'nltk'
],
classifiers=[
'Development Status :: 1 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)