-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 945 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
with open('readme.org') as reader:
long_description = reader.read()
setup(name='smem',
long_description=long_description,
version= '2017.04.09',
description="smem memory command updated for python 3",
author="Matt Mackall/cloisteredmonkey",
platforms=['linux'],
url = 'https://github.com/necromuralist/smem',
author_email="[email protected]",
license = "GPLv2",
install_requires = 'future'.split(),
packages = find_packages(),
entry_points = """
[console_scripts]
smem=smem.main:main
"""
)
# if you have an egg somewhere other than PyPi that needs to be installed as a dependency, point to a page where you can download it:
# dependency_links = ["http://<url>"]