forked from KonishchevDmitry/pcore
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (28 loc) · 1.17 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
"""pcore installation script."""
from __future__ import unicode_literals
from setuptools import find_packages, setup
if __name__ == "__main__":
with open("README") as readme:
setup(
name = "pcore",
version = "0.2",
description = readme.readline().strip(),
long_description = readme.read().strip() or None,
url = "http://github.com/KonishchevDmitry/pcore",
license = "MIT",
author = "Dmitry Konishchev",
author_email = "[email protected]",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
platforms = [ "unix", "linux", "osx" ],
packages = find_packages(),
)