-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (35 loc) · 1.32 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
import os
from setuptools import setup, find_packages
root_dir_path = os.path.dirname(os.path.abspath(__file__))
long_description = open(os.path.join(root_dir_path, "README.md")).read()
setup(
name="gelidum",
version="0.7.1",
author="Diego J. Romero López",
author_email="[email protected]",
description="Freeze your python objects",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License"
],
install_requires=[],
license="MIT",
keywords="freeze python object",
url="https://github.com/diegojromerolopez/gelidum",
packages=find_packages(),
data_files=[],
include_package_data=True,
scripts=[]
)