-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (61 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import os, json, re
from setuptools import setup, find_packages
from codecs import open
PATH = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(PATH, 'README.md'), encoding='utf-8') as f:
README = f.read()
if __name__ == '__main__':
setup(
name="urlly",
version="0.1.0-alpha",
description="Shorten urls",
long_description=README,
long_description_content_type='text/markdown',
url="https://github.com/seanharrison/urlly",
author="Sean Harrison",
author_email="[email protected]",
license="MPL 2.0",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
],
install_requires=[
"aiofiles~=22.1.0",
"alembic~=1.8.1",
"asyncpg~=0.26.0",
"databases~=0.4.3",
"gunicorn~=20.1.0",
"httptools~=0.5.0",
"Jinja2~=2.11.3",
"MarkupSafe~=2.0.1",
"orjson~=3.8.0",
"psycopg2-binary~=2.9.3",
"pydantic~=1.10.2",
"requests~=2.28.1",
"SQLAlchemy~=1.3.24",
"starlette~=0.21.0",
"uvicorn~=0.18.3",
"uvloop~=0.17.0",
],
extras_require={
"dev": [
"black~=22.8.0",
"ipython~=8.5.0",
"isort~=5.10.1",
],
"test": [
"black~=22.8.0",
"flake8~=5.0.4",
"httpx~=0.23.0",
"pytest~=7.1.3",
"pytest-cov~=4.0.0",
],
},
entry_points={},
packages=find_packages(),
package_data={"": []},
data_files=[],
scripts=[],
)