forked from micahflee/semiphemeral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.07 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
import setuptools
import semiphemeral
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="semiphemeral",
version=semiphemeral.version,
author="Micah Lee",
author_email="[email protected]",
long_description=long_description,
description="Automatically delete your old tweets, except for the ones you want to keep",
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/micahflee/semiphemeral",
packages=["semiphemeral"],
package_data={
"semiphemeral": [
"templates/*",
"static/*",
"static/img/*",
"static/js/*",
"static/js/lib/*",
]
},
classifiers=(
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
),
entry_points={"console_scripts": ["semiphemeral = semiphemeral:main",],},
install_requires=["click", "colorama", "tweepy", "flask", "sqlalchemy"],
)