forked from major/icanhaz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
17 lines (15 loc) · 813 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
from icanhaz import __version__
# We have moved most of the setup arguments over to setup.cfg. Here is the justification for the remaining args:
# name: necessary for python to understand this package
# setup_requires: Since we use a setup.cfg file now, the client system needs a version of setuptools that can parse
# the new file format to get the rest of the metadata.
# test_suite: Setuptools does not yet support keeping this directive in setup.cfg
# version: necessary for pip, etc. to tell whether this package meets its requirements. For example, if you want
# to install "blah>=2.3", is this package even worth downloading?
setup(
name="icanhaz",
setup_requires=["setuptools>=30.3"],
test_suite="icanhaz.tests",
version=__version__,
)