-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.08 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
###########################################
#### Do not edit this file ################
#### It has been auto-generated ###########
###########################################
from setuptools import setup, find_packages
install_requires = ["numpy"]
setup(
name="pyicf",
version="0.1.0",
description="An indexable container file format.",
author="Samuel Flis",
author_email="samuel.d.flis@gmail.com",
url="https://github.com/sflis/pyicf",
packages=find_packages(),
provides=["icf"],
license="GNU Lesser General Public License v3 or later",
install_requires=install_requires,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Software Development :: Libraries :: Python Modules",
],
# entry_points={
# "console_scripts": [
# ]
# },
)