mirror of
https://github.com/wassname/IndicoIo-python.git
synced 2026-06-27 16:10:34 +08:00
16 lines
478 B
Python
16 lines
478 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name = "IndicoIo",
|
|
version = '0.2.3',
|
|
packages = ["IndicoIo",],
|
|
license = "MIT License (See LICENSE)",
|
|
long_description = open("README").read(),
|
|
url = "https://github.com/IndicoDataSolutions/IndicoIo-python",
|
|
author = "Alec Radford, Slater Victoroff",
|
|
author_email = "Alec Radford <alec@indicodatasolutions.com>, Slater Victoroff <slater@indicodatasolutions.com>",
|
|
)
|