forked from MPBAUnofficial/plrutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 879 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
26
27
28
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
# allows setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="plrutils",
version=open("VERSION").read().strip('\n'),
description='A simple PLR helper.',
long_description=README,
license='FreeBSD License',
url="https://bitbucket.org/dallagi/plrutils",
author="Marco Dallagiacoma",
author_email="[email protected]",
packages=['plrutils'],
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: FreeBSD License', # cosi tanto per
'Operating System :: OS Indipendent',
'Framework :: Django',
],
install_requires=["django"],
zip_safe=False,
)