-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 842 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (33 loc) · 842 Bytes
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
#!/usr/bin/env python
# coding: utf-8
"""
File Name: setup.py
Author: Wan Ji
E-mail: wanji@live.com
Created on: Thu May 1 15:24:31 2014 CST
"""
DESCRIPTION = """
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='bitmap',
version='0.0.7',
author='WAN Ji',
author_email='wanji@live.com',
package_dir={'bitmap': 'src'},
packages=['bitmap'],
url='https://github.com/wanji/bitmap',
# license='LICENSE.txt',
description='.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=[
'future',
],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
],
)