-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 771 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "evecentral",
version = "0.0.1",
author = "Tyler Dixon",
author_email = "[email protected]",
description = "A small module to cache eve central prices in memory",
licence = "BSD",
keywords = "eve evecentral",
url = "https://github.com/ZymoticB/python-evecentral",
packages = ['evecentral'],
long_description=read('README.rst'),
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
],
)