-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 983 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
from distutils.core import setup
# -------------------------
# Setup
# -------------------------
setup(name='repackage',
version='0.7',
description= ("Repackaging, call a non-registered package in any "
"directory (with relative call). "
"Used either by modules moved into to a subdirectory "
"or to prepare the import of a non-registered package "
"(in any relative path)."),
url='https://www.settlenext.com',
author='Laurent Franceschetti',
author_email='[email protected]',
keywords ="package relative path module import library",
license='MIT',
packages=['repackage'],
long_description=open('README.txt').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License"
])