-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 1.17 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
import os
from setuptools import setup
with open(os.path.join("README.md")) as file:
readme = file.read()
with open(os.path.join("requirements.txt")) as file:
requirements = file.read().split("\n")
setup(
name="alcherializer",
packages=["alcherializer"],
version=os.getenv("GITHUB_REF").replace("refs/tags/v", ""),
license="MIT",
description="Django like model serializer",
long_description=readme,
long_description_content_type="text/markdown",
author="Vinicius Guedes",
author_email="[email protected]",
url="https://github.com/vinyguedess/alcherializer",
download_url="https://github.com/vinyguedess/alcherializer/archive/master.zip",
keywords=["django", "flask", "serializer", "sql", "sqlalchemy", "alchemy"],
install_requires=requirements,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)