-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (35 loc) · 913 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
29
30
31
32
33
34
35
36
37
38
39
40
# -*-coding:utf-8-*-
# !/usr/bin/env python
from setuptools import setup, find_packages
REQUIREMENTS = [
'javalang>=0.11.0'
]
PKGS = find_packages(exclude=['tests'])
# PKG_DATA = [
# ("bower_components", ['*']),
# ("gui", ['*']),
# ("output", ['*']),
# (".", ['index.html', 'bower.json'])
# ]
VERSION = 0.1
setup(
name='AnalysisProjectDependencies',
version=VERSION,
license='BSD',
url='https://github.com/Kyson/AnalysisProjectDependencies',
author='Kyson',
author_email='[email protected]',
description='Analysis project dependence(support java project)',
packages=PKGS,
package_files={},
classifiers=[
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License',
],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=REQUIREMENTS,
extras_require={
}
)