forked from michael-lazar/astrobotany
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.16 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
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as fp:
long_description = fp.read()
setup(
name="astrobotany",
description="A plant-based app for jetforce gemini servers",
version="0.0.1",
license="ISC License",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/michael-lazar/astrobotany",
author="Michael Lazar",
author_email="[email protected]",
keywords="gemini",
packages=["astrobotany"],
python_requires=">=3.7, <4",
install_requires=[
"jetforce",
"peewee",
"jinja2",
"faker",
"bcrypt",
"emoji @ git+https://github.com/carpedm20/[email protected]#egg=emoji-1.2.1",
"MIDIUtil",
],
extras_require={
"test": ["pytest", "black", "isort", "mypy", "freezegun"],
},
package_data={
"astrobotany": [
"art/*",
"templates/*",
"templates/fragments/*",
"static/*",
"static/changes/*",
"mail/*",
]
},
)