- 论坛徽章:
- 0
|
q1208c 发表于 2014-03-21 13:05 ![]()
回复 6# like310101 - import os
- from setuptools import setup, find_packages
-
- currdir = os.path.normpath(os.path.join(os.path.abspath(__file__),
- os.pardir,
- os.pardir,
- os.pardir,
- os.pardir,
- os.pardir,
- os.pardir))
- conf_file=currdir+'/etc/mysql_quotas.conf'
- init_file=currdir+'/etc/init.d/mysql-quotas'
- setup(
- name = "mysql-quotas",
- version = "1.0.0",
- packages = find_packages(),
- zip_safe = False,
-
- description = "Mysql quotas.",
- long_description = "Mysql quotas.",
- author = "like",
- author_email = "a@b.com",
-
- license = "copyright by xx",
- keywords = ("mysql", "quotas"),
- platforms = "Independant",
- url = "http://bbs.chinaunix.net",
- scripts=["bin/mysql_quotas"],
- data_files=[('/etc/mysql_quotas', [conf_file]),
- ('/etc/init.d', [init_file])],
- )
复制代码 目录结构:
mysql_quotas-
|---程序包
|---bin-
|---mysql_quotas<注:python __main__,这个文件安装时会被放到/usr/bin/下>
|---etc-
|---mysql_quotas.conf<注:配置文件,这个文件安装时会被放到/etc/mysql_quotas下>
|---init.d-
|---mysql-quotas<注:chkconfig文件,这个文件安装时会被放到/etc/init.d下,具体怎么写可以参考该目录下的其他实现>
希望对有需要的人有帮助。
|
|