-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
31 lines (30 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
import os
import setuptools
setuptools.setup(
name="fleep",
version="1.0.1",
description="File format determination library",
long_description=open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.rst"), "r").read(),
url="https://github.com/floyernick/fleep",
author="Mykyta Paliienko",
author_email="floyernick@gmail.com",
license="MIT",
packages=["fleep"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development",
],
python_requires=">=3.1",
include_package_data=True,
zip_safe=False
)